/* Estilos generales */
body {
    background-color: #1A002B;
    color: #fff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #00FFA3;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    gap: 10px;
}

button {
    background-color: #FF2DF0;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

button:hover {
    background-color: #FF3EFF;
}

/* Estilos de las secciones */
.hidden {
    display: none;
}

main {
    padding: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
}

/* Estilo del pie de página */
footer {
    background-color: #1A002B;
    padding: 60px 20px 20px;
    color: #fff;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links button {
    background-color: #00FFA3;
    margin: 5px;
}

.footer-animation {
    position: relative;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    animation: psychedelic-animation 5s infinite alternate;
}

@keyframes psychedelic-animation {
    0% {
        color: #FF2DF0;
        transform: rotate(0deg);
    }
    50% {
        color: #00FFA3;
        transform: rotate(360deg);
    }
    100% {
        color: #FF2DF0;
        transform: rotate(720deg);
    }
}

/* Estilo del logo */
.logo-container {
    width: 100px;
}

.logo {
    width: 100%;
}

/* Transición de botones */
button:focus {
    outline: none;
}

/* Estilo del pie de página con el efecto psicodélico */
footer .footer-animation p {
    font-size: 18px;
    animation: psychedelic-animation 10s ease-in-out infinite;
}